home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 April (Special) / Chip-Special_2003-04_Vypalujeme-cd-i-dvd.bin / soft / vcdeasy / VCDEasy_v1.1.4_Setup.exe / {app} / CdrDao / README.FreeBSD < prev    next >
Text File  |  2002-09-15  |  899b  |  28 lines

  1. Here are some notes from Yasuhito FUTATSUKI <futatuki@fureai.or.jp> 
  2. (maintainer of cdrdao's FreeBSD port).
  3.  
  4.  
  5. Real Time Scheduling
  6. --------------------
  7.  
  8. In the LINT configuration file in which all devices' configurations
  9. and all available kernel options is described, there are three
  10. options as follows:
  11.  
  12.     options             "P1003_1B"
  13.     options             "_KPOSIX_PRIORITY_SCHEDULING"
  14.     options             "_KPOSIX_VERSION=199309L"
  15.  
  16. If the kernel has been built with these options, soft real time
  17. scheduling code based on "rtpiro" are built in the kernel as a
  18. POSIX scheduling system call implementation. OTOH if the kernel 
  19. has been built without them, sched_*() system calls' entities
  20. are not compiled in it, so sche_*() calls always fail with
  21. logging message such as
  22.  
  23.     cmd cdrdao pid 1234 tried to use non-present sched_getparam
  24.  
  25. etc.
  26.  
  27. These options are not in the GENERIC kernel.
  28.